home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / VENKMAN.XPI / bin / chrome / venkman.jar / content / venkman / venkman-views.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-04-18  |  9.6 KB  |  270 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    -
  5.    - ***** BEGIN LICENSE BLOCK *****
  6.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  7.    -
  8.    - The contents of this file are subject to the Mozilla Public License Version
  9.    - 1.1 (the "License"); you may not use this file except in compliance with
  10.    - the License. You may obtain a copy of the License at
  11.    - http://www.mozilla.org/MPL/
  12.    -
  13.    - Software distributed under the License is distributed on an "AS IS" basis,
  14.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  15.    - for the specific language governing rights and limitations under the
  16.    - License.
  17.    -
  18.    - The Original Code is The JavaScript Debugger.
  19.    -
  20.    - The Initial Developer of the Original Code is
  21.    - Netscape Communications Corporation.
  22.    - Portions created by the Initial Developer are Copyright (C) 1998
  23.    - the Initial Developer. All Rights Reserved.
  24.    -
  25.    - Contributor(s):
  26.    -   Robert Ginda, <rginda@netscape.com>, original author
  27.    -
  28.    - Alternatively, the contents of this file may be used under the terms of
  29.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  30.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.    - in which case the provisions of the GPL or the LGPL are applicable instead
  32.    - of those above. If you wish to allow use of your version of this file only
  33.    - under the terms of either the GPL or the LGPL, and not to allow others to
  34.    - use your version of this file under the terms of the MPL, indicate your
  35.    - decision by deleting the provisions above and replace them with the notice
  36.    - and other provisions required by the GPL or the LGPL. If you do not delete
  37.    - the provisions above, a recipient may use your version of this file under
  38.    - the terms of any one of the MPL, the GPL or the LGPL.
  39.    -
  40.    - ***** END LICENSE BLOCK ***** -->
  41.  
  42. <!DOCTYPE overlay SYSTEM "chrome://venkman/locale/venkman.dtd" >
  43.  
  44. <overlay id="venkman-views-overlay"
  45.   xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  46.  
  47.   <overlaytarget id="views-overlay-target" hidden="true">
  48.  
  49.  
  50.     <!-- breakpoint view -->
  51.  
  52.     <floatingview id="breaks" title="&Break.label;" flex="1">
  53.       <vbox id="break-view-content" flex="1">
  54.         <tree flex="1" id="break-tree" persist="height" hidecolumnpicker="true"
  55.           class="focusring"
  56.           context="context:breaks">
  57.  
  58.           <treecols>
  59.             <treecol id="breaks:col-0" label="&BreakCol0.label;"
  60.               primary="true" flex="5" persist="hidden width"/>
  61.             <splitter class="tree-splitter"/>
  62.             <treecol id="breaks:col-1" flex="1" label="&BreakCol1.label;"
  63.               persist="hidden width"/>
  64.             <splitter class="tree-splitter"/>
  65.           </treecols>
  66.  
  67.           <treechildren id="break-body"/>
  68.  
  69.         </tree>
  70.       </vbox>
  71.     </floatingview>
  72.  
  73.     <!-- locals view -->
  74.     
  75.     <floatingview id="locals" title="&Locals.label;" flex="1">
  76.       <vbox id="locals-view-content" flex="1">
  77.         <tree flex="1" id="locals-tree" persist="height"
  78.           class="focusring"
  79.           context="context:locals">
  80.  
  81.           <treecols>
  82.             <treecol id="locals:col-0" label="&LocalsCol0.header;"
  83.               primary="true" flex="1" persist="hidden width"/>
  84.             <splitter class="tree-splitter"/>
  85.             <treecol id="locals:col-1" flex="1" label="&LocalsCol1.header;"
  86.               persist="hidden width" hidden="true"/>
  87.             <splitter class="tree-splitter"/>
  88.             <treecol id="locals:col-2" flex="1" label="&LocalsCol2.header;"
  89.               persist="hidden width"/>
  90.             <splitter class="tree-splitter"/>
  91.             <treecol id="locals:col-3" flex="1" label="&LocalsCol3.header;"
  92.               persist="hidden width" hidden="true"/>
  93.           </treecols>
  94.  
  95.           <treechildren id="locals-body"/>
  96.  
  97.         </tree>
  98.       </vbox>
  99.     </floatingview>
  100.  
  101.     <!-- session view -->
  102.  
  103.     <floatingview id="session" title="&Session.label;" flex="1">
  104.       <vbox id="session-view-content" flex="1" persist="width">
  105.  
  106.          <browser id="session-output-iframe" flex="1" type="content"
  107.            src="about:blank" context="context:session"/>
  108.          <textbox id="session-sl-input" class="input-widget"
  109.            onkeypress="console.views.session.onSLKeyPress(event);"/>
  110.       </vbox>
  111.     </floatingview>
  112.  
  113.     <!-- scripts view -->
  114.  
  115.     <floatingview id="scripts" title="&Scripts.label;" flex="1">
  116.       <vbox id="scripts-view-content" flex="1">
  117.         <hbox id="scripts-search-box" align="center" persist="hidden">
  118.           <label id="scripts-search-label" value="&ScriptsSearch.label;"
  119.            onclick="console.views.scripts.onSearchClear(event);"
  120.            tooltiptext="&ScriptsSearch.tooltip;"/>
  121.           <textbox id="scripts-search" flex="1"
  122.             oninput="console.views.scripts.onSearchInput(event);"/>
  123.         </hbox>
  124.         <tree flex="1" id="scripts-tree" persist="height"
  125.           class="focusring"
  126.           context="context:scripts">
  127.  
  128.           <treecols>
  129.             <treecol id="scripts:col-0" label="&ScriptsCol0.header;"
  130.               primary="true" flex="5" persist="hidden width"/>
  131.             <splitter class="tree-splitter"/>
  132.             <treecol id="scripts:col-1" flex="1" label="&ScriptsCol1.header;"
  133.               persist="hidden width"/>
  134.             <splitter class="tree-splitter"/>
  135.             <treecol id="scripts:col-2" flex="1" label="&ScriptsCol2.header;"
  136.               persist="hidden width" hidden="true"/>
  137.           </treecols>
  138.  
  139.           <treechildren id="script-list-body"/>
  140.  
  141.         </tree>
  142.       </vbox>
  143.     </floatingview>
  144.  
  145.     <!-- source2 view -->
  146.  
  147.     <floatingview id="source2" title="&Source.label;" flex="1">
  148.       <vbox flex="1">
  149.         <tabbox id="source2-tabbox" flex="1">
  150.           <tabs id="source2-tabs">
  151.             <!-- 
  152.               We've got to put this placeholder tab in the tabs element to avoid
  153.               bogus strict warnings and exceptions.
  154.             -->
  155.             <tab id="source2-bloke" hidden="true"/>
  156.           </tabs>
  157.           <tabpanels id="source2-deck" flex="1"/>
  158.         </tabbox>
  159.         <textbox class="plain" id="source2-heading" readonly="true"/>
  160.       </vbox>
  161.     </floatingview>
  162.  
  163.     <!-- source view -->
  164.  
  165.     <floatingview id="source" title="&Source.label;" flex="1">
  166.       <vbox id="source-view-content" flex="1">
  167.         <toolbox>
  168.           <toolbar id="source-header" grippytooltiptext="&SourceHeader.tip;">
  169.             <label id="source-url" flex="1" crop="end"/>
  170.           </toolbar>
  171.         </toolbox>
  172.         <tree id="source-tree" flex="1" persist="width"
  173.           class="focusring"
  174.           onclick="console.views.source.onClick(event);"
  175.           onselect="console.views.source.onSelect(event);"
  176.           context="context:source">
  177.  
  178.           <treecols>
  179.             <treecol id="source:col-0" width="20px"
  180.               display="&SourceCol0.display;" persist="hidden width"/>
  181.             <splitter class="tree-splitter"/>
  182.             <treecol id="source:col-1" width="50px"
  183.               display="&SourceCol1.display;" persist="hidden width"/>
  184.             <splitter class="tree-splitter"/>
  185.             <treecol id="source:col-2" flex="1" display=""
  186.               ignoreincolumnpicker="true" persist="hidden width"/>
  187.           </treecols>
  188.  
  189.           <treechildren id="source-tree-body"/>
  190.  
  191.         </tree>
  192.       </vbox>
  193.     </floatingview>
  194.  
  195.     <!-- stack view -->
  196.  
  197.     <floatingview id="stack" title="&Stack.label;" flex="1"
  198.       grippytooltiptext="&Stack.label;">
  199.       <vbox id="stack-view-content" flex="1">
  200.         <tree flex="2" id="stack-tree" persist="width"
  201.           class="focusring"
  202.           context="context:stack">
  203.  
  204.           <treecols>
  205.             <treecol id="stack:col-0" flex="1" persist="hidden width"
  206.               label="&StackCol0.header;"/>
  207.             <splitter class="tree-splitter"/>
  208.             <treecol flex="2" id="stack:col-1" persist="hidden width"
  209.               label="&StackCol1.header;"/>
  210.             <splitter class="tree-splitter"/>
  211.           </treecols>
  212.  
  213.           <treechildren id="stack-body"/>
  214.  
  215.         </tree>
  216.       </vbox>
  217.     </floatingview>
  218.  
  219.     <!-- watch view -->
  220.  
  221.     <floatingview id="watches" title="&Watch.label;" flex="1">
  222.       <vbox id="watch-view-content" flex="1">
  223.         <tree flex="1" id="watch-tree" persist="height"
  224.           class="focusring"
  225.           context="context:watches">
  226.  
  227.           <treecols>
  228.             <treecol id="watches:col-0" flex="1" persist="hidden width"
  229.               primary="true" label="&WatchCol0.header;"/>
  230.             <splitter class="tree-splitter"/>
  231.             <treecol flex="1" id="watches:col-1" persist="hidden width"
  232.               hidden="true" label="&WatchCol1.header;"/>
  233.             <splitter class="tree-splitter"/>
  234.             <treecol flex="1" id="watches:col-2" persist="hidden width"
  235.               label="&WatchCol2.header;"/>
  236.             <splitter class="tree-splitter"/>
  237.             <treecol flex="1" id="watches:col-3" persist="hidden width"
  238.               label="&WatchCol3.header;" hidden="true"/>
  239.           </treecols>
  240.  
  241.           <treechildren id="watch-body" flex="1"/>
  242.  
  243.         </tree>      
  244.       </vbox>
  245.     </floatingview>
  246.  
  247.     <!-- windows view -->
  248.  
  249.     <floatingview id="windows" title="&Windows.label;" flex="1">
  250.       <vbox id="windows-view-content" flex="1">
  251.         <tree flex="1" id="windows-tree" persist="height"
  252.           class="focusring"
  253.           context="context:windows"
  254.           hidecolumnpicker="true">
  255.  
  256.           <treecols>
  257.             <treecol id="windows:col-0" label="&WindowsCol0.label;"
  258.               primary="true" flex="1" persist="hidden width"/>
  259.           </treecols>
  260.  
  261.           <treechildren id="windows-body"/>
  262.  
  263.         </tree>
  264.       </vbox>
  265.     </floatingview>
  266.     
  267.   </overlaytarget>
  268.  
  269. </overlay>
  270.